home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gdevpstr.c < prev    next >
C/C++ Source or Header  |  1997-02-13  |  4KB  |  143 lines

  1. /* Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevpstr.c */
  20. /* Stream output for PostScript- and PDF-writing drivers */
  21. #include "math_.h"        /* for fabs */
  22. #include "stdio_.h"        /* for stream.h */
  23. #include "string_.h"        /* for strchr */
  24. #include "gdevpstr.h"
  25. #include "stream.h"
  26.  
  27. /* ------ Output ------ */
  28.  
  29. /* Put a byte array on a stream. */
  30. int
  31. pwrite(stream *s, const void *ptr, uint count)
  32. {    uint used;
  33.  
  34.     sputs(s, (const byte *)ptr, count, &used);
  35.     return (int)used;
  36. }
  37.  
  38. /* Put a string on a stream. */
  39. int
  40. pputs(stream *s, const char *str)
  41. {    uint len = strlen(str);
  42.     uint used;
  43.     int status = sputs(s, (const byte *)str, len, &used);
  44.  
  45.     return (status >= 0 && used == len ? 0 : EOF);
  46. }
  47.  
  48. /* Print a format string up to the first variable substitution. */
  49. /* Return a pointer to the %, or to the terminating 0 if no % found. */
  50. private const char *
  51. pprintf_scan(stream *s, const char *format)
  52. {    const char *fp = format;
  53.  
  54.     for ( ; *fp != 0; ++fp )
  55.       { if ( *fp == '%' )
  56.           { if ( fp[1] != '%' )
  57.           break;
  58.             ++fp;
  59.           }
  60.         sputc(s, *fp);
  61.       }
  62.     return fp;
  63. }
  64.  
  65. /* Print (an) int value(s) using a format. */
  66. const char *
  67. pprintd1(stream *s, const char *format, int v)
  68. {    const char *fp = pprintf_scan(s, format);
  69.     char str[25];
  70.  
  71. #ifdef DEBUG
  72.     if ( *fp == 0 || fp[1] != 'd')    /* shouldn't happen! */
  73.       lprintf1("Bad format in pprintd1: %s\n", format);
  74. #endif
  75.     sprintf(str, "%d", v);
  76.     pputs(s, str);
  77.     return pprintf_scan(s, fp + 2);
  78. }
  79. const char *pprintd2(stream *s, const char *format, int v1, int v2)
  80. {    return pprintd1(s, pprintd1(s, format, v1), v2);
  81. }
  82.  
  83. /* Print (a) floating point number(s) using a format. */
  84. /* See gdevpdfx.h for why this is needed. */
  85. const char *
  86. pprintg1(stream *s, const char *format, floatp v)
  87. {    const char *fp = pprintf_scan(s, format);
  88.     char str[50];
  89.  
  90. #ifdef DEBUG
  91.     if ( *fp == 0 || fp[1] != 'g' )        /* shouldn't happen! */
  92.       lprintf1("Bad format in pprintg: %s\n", format);
  93. #endif
  94.     sprintf(str, "%g", v);
  95.     if ( strchr(str, 'e') )
  96.       { /* Bad news.  Try again using f-format. */
  97.         sprintf(str, (fabs(v) > 1 ? "%1.1f" : "%1.8f"), v);
  98.       }
  99.     pputs(s, str);
  100.     return pprintf_scan(s, fp + 2);
  101. }
  102. const char *
  103. pprintg2(stream *s, const char *format, floatp v1, floatp v2)
  104. {    return pprintg1(s, pprintg1(s, format, v1), v2);
  105. }
  106. const char *
  107. pprintg4(stream *s, const char *format, floatp v1, floatp v2, floatp v3,
  108.   floatp v4)
  109. {    return pprintg2(s, pprintg2(s, format, v1, v2), v3, v4);
  110. }
  111.  
  112. /* Print a long value using a format. */
  113. const char *
  114. pprintld1(stream *s, const char *format, long v)
  115. {    const char *fp = pprintf_scan(s, format);
  116.     char str[25];
  117.  
  118. #ifdef DEBUG
  119.     if ( *fp == 0 || fp[1] != 'l' || fp[2] != 'd')    /* shouldn't happen! */
  120.       lprintf1("Bad format in pprintld: %s\n", format);
  121. #endif
  122.     sprintf(str, "%ld", v);
  123.     pputs(s, str);
  124.     return pprintf_scan(s, fp + 3);
  125. }
  126.  
  127. /* Print (a) string(s) using a format. */
  128. const char *
  129. pprints1(stream *s, const char *format, const char *str)
  130. {    const char *fp = pprintf_scan(s, format);
  131.  
  132. #ifdef DEBUG
  133.     if ( *fp == 0 || fp[1] != 's' )        /* shouldn't happen! */
  134.       lprintf1("Bad format in pprints: %s\n", format);
  135. #endif
  136.     pputs(s, str);
  137.     return pprintf_scan(s, fp + 2);
  138. }
  139. const char *
  140. pprints2(stream *s, const char *format, const char *str1, const char *str2)
  141. {    return pprints1(s, pprints1(s, format, str1), str2);
  142. }
  143.